home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
FM Towns: Free Software Collection 6
/
FM Towns Free Software Collection 6.iso
/
ms_dos
/
gds
/
source
/
gds109.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS (detected)
UTF-8
Wrap
C/C++ Source or Header
|
1993-07-08
|
360 b
|
21 lines
/*
*
* GDS109 : 表示ペ-ジの指定
*
*/
#include <stdio.h>
#include <dos.h>
unsigned int GDS_display_page(unsigned char page) {
union REGS inregs, outregs;
struct SREGS segregs;
segread(&segregs);
inregs.h.ah=0x8A;
inregs.h.al=page;
int86x(0x92,&inregs,&outregs,&segregs);
return (unsigned int)outregs.h.ah;
}